home *** CD-ROM | disk | FTP | other *** search
/ C/C++ Users Group Library 1996 July / C-C++ Users Group Library July 1996.iso / listings / v_09_12 / 9n12111a < prev    next >
Text File  |  1991-10-19  |  237b  |  17 lines

  1. /* LISTING 2 - OBJ.H */
  2.  
  3. #define MAXACTIONS 25
  4.  
  5. typedef struct circle_actions
  6.    {
  7.    int (*pactions[MAXACTIONS])();
  8.    } CIRCLE_ACTIONS;
  9.  
  10.  
  11. typedef struct circle
  12.    {
  13.    int color;
  14.    CIRCLE_ACTIONS *pcact;
  15.    } CIRCLE;
  16.  
  17.